home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2001 November / SGI IRIX Installation Tools & Overlays 2001 November - Disc 3.iso / dist / cluster_services.idb / var / cluster / cmgr-templates / cmgr-create-resource-filesystem.z / cmgr-create-resource-filesystem
Text File  |  2001-10-10  |  2KB  |  61 lines

  1. #
  2. # The following cluster_mgr script allows users to define a resource of 
  3. # resource type filesystem for a cluster in the CDB. This script has to run as 
  4. # "/usr/cluster/bin/cluster_mgr -f".  Replace all the values that are
  5. # within "<<" and ">>" with values appropriate for the resource and 
  6. # run the script.
  7. #
  8.  
  9. #
  10. # filesystem resource type is for XFS filesystem only.
  11. # If multiple resources of resource type filesystem have to be defined, repeat
  12. # the following filesystem definition template.
  13. #
  14. # Name of the filesystem.  The name of the filesystem resource has 
  15. # to be absolute path name of the filesystem mount point.
  16. # Example value: /shared_vol 
  17. #
  18. define resource <<name of the filesystem>> of resource_type filesystem in cluster <<cluster name>>
  19.  
  20. #
  21. # The name of the volume resource corresponding to the filesystem. This 
  22. # resource should be the same as the volume dependency, see below.
  23. # This field is mandatory.
  24. # Example value: HA_vol
  25.     set volume-name to <<name of the volume resource>>
  26. # The options to be used when mounting the filesystem. This field is mandatory.
  27. # For the list of mount options, see fstab(4).
  28. # Example value: "rw"
  29.     set mount-options to <<mount options>>
  30. #
  31. # The monitoring level for the filesystem. This field is optional. If this 
  32. # field is not specified, value "1" is used. 
  33. # Monitoring level can be 
  34. # 1 - Checks if filesystem exists in the mtab file (see mtab(4)). This is 
  35. # a lightweight check compared to monitoring level 2.
  36. # 2 - Checks if the filesystem is mounted using stat(1m) command.
  37. #
  38.     set monitoring-level to <<level>>
  39. done
  40.  
  41. #
  42. # Add filesystem resource type dependency
  43. #
  44. modify resource <<name of the filesystem>> of resource_type filesystem in cluster <<cluster name>>
  45. #
  46. # The filesystem resource type definition also contains a resource dependency
  47. # on a volume resource.
  48. # This field is mandatory.
  49. # Example value: HA_vol
  50.         add dependency <<name of volume resource>> of type volume
  51. #
  52. # filesystem resource definition for the cluster complete
  53. #
  54. done
  55.  
  56. #
  57. # Script complete. This should be last line of the script
  58. #
  59. quit
  60.